home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / RecordID.java < prev    next >
Text File  |  1997-07-22  |  386b  |  31 lines

  1.  
  2. package Pdapilot;
  3.  
  4. public class RecordID {
  5.     private int value;
  6.     
  7.     public RecordID(int id) {
  8.         this.set(id);
  9.     }
  10.  
  11.     public RecordID() {
  12.         this.set(0);
  13.     }
  14.     
  15.     public void set(int id) {
  16.         value = id;
  17.     }
  18.     
  19.     public int get() {
  20.         return value;
  21.     }
  22.     
  23.     public boolean equals(RecordID other) {
  24.         return (value == other.value);
  25.     }
  26.     
  27.     public String toString() {
  28.         return "<RecordID "+value+">";
  29.     }
  30. }
  31.